home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / games / sstars.zip / README.1ST next >
Text File  |  1996-04-12  |  1KB  |  27 lines

  1. Stars
  2.  
  3. Written in Delphi 1.0
  4.  
  5. This is my first try at making a simple brain teaser program using
  6. Borland's Delphi programming system.  The brain teaser itself comes from an old DOS basic program I had that was then translated to Delphi.
  7.  
  8. The task is to change a 3X3 array that contains blanks and stars, represented by asterisks '*', into a certain pattern given below:
  9.  
  10. * * *
  11. *   *
  12. * * *
  13.  
  14. Note that all cells in the 3X3 array have stars except the center.  You are only allowed to pick on a cell with a star.  Once picked, the star disappears and the immediate neighbors change state, that is blanks turn into stars and stars turn into blanks.  The basic changes are given below:
  15.  
  16. 1)  Clicking on a corner star changes state of the three cells     surrounding the corner
  17.  
  18. 2)  Clicking on the center star changes four cells, the one above it, 
  19.     below it, to the right and to the left
  20.  
  21. 3)  Clicking on a side star change the the two neighboring corner 
  22.     cells.
  23.  
  24. I hope you enjoy the game as much as I enjoyed programming it.
  25.  
  26. Wayne Sorensen
  27.